/* General Styling */
* {
	box-sizing: border-box;
	font-family: inherit;
}

*:focus {
    outline: none;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    /*overflow: hidden;*/
}

body {
    background-color: #000;
    font-family: 'Roboto', sans-serif;
    position: relative;
	color: #fff;
}

#main {
	height: 100vh;
	min-height: 540px;
	width: 100%;
	max-width: 478px;
	margin: 0 auto;
	position: relative;
}

.video-background {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	z-index: -100;
	text-align: center;
	overflow: hidden;
	max-width: 478px;
}

#video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

form,
.container {
	width: 100%;
    height: 100%;
}

.overlay {
    position: fixed;
	left: 50%;
    top: 50%;
	width: 100%;
	height: 100%;
    transform: translate(-50%,-50%);
    z-index: -10;
    background: rgba(0, 0, 0, 0.35);
}

.logo {
	position: relative;
	top: 20px;
	left: 50%;
	margin-left: -75px;
	padding-bottom: 5px;
	width: 150px;
	height: auto;
}

.sub-header1{
    position: relative;
    top: 25px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: .05em;
    line-height: 1.5;
    text-align: center;
}

/* Loader */
.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 500;
    display: none;
    opacity: 0;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.visible {
    display: flex;
    opacity: 1;
}

.loader-content {
    text-align: center;
}

.loader-content p {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
}

.lds-default {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-default div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #00D984;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 9px;
    left: 18px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}
.lds-default div:nth-child(8) {
	animation-delay: -0.7s;
	top: 41px;
	left: 9px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}
@keyframes lds-default {
	0%, 20%, 80%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
}

/* Target only Chrome & Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .blur {
        filter: blur(6px);
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
        filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='6px');
        transition: filter .3s ease;
        -webkit-transition: filter .3s ease;
        -moz-transition: filter .3s ease;
    }
}

/* Target only IE 10 and 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .blur {
        filter: blur(6px);
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
        filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='6px');
        transition: filter .3s ease;
        -webkit-transition: filter .3s ease;
        -moz-transition: filter .3s ease;
    }
}

/* Target only Edge */
@supports (-ms-ime-align:auto) {
    .blur {
        filter: blur(6px);
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
        filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='6px');
        transition: filter .3s ease;
        -webkit-transition: filter .3s ease;
        -moz-transition: filter .3s ease;
    }
}

.opacity {
    opacity: 1;
}

.msg {
    width: 100%;
    padding: 20px 0 0;
    border: none;
    position: relative;
}

.msg #e {
    width: 80%;
    max-width: 400px;
    background-color: red;
    list-style: none;
    text-align: center;
    border-radius: 8px;
    padding: .5rem;
    color: #fff;
    margin: 0 auto;
}

.progress-container {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 20px;
    right: 10px;
    display: none;
}

button,
select {
    cursor: pointer;
}

/* Footer */

.footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-bottom: 1em;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.footer a {
    color: inherit;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.footer a:hover {
    color: #00D984;
}

/* Stage One Styling */
.initial-textbox {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 1.5rem;
    transform: translate(-50%, -68%);
    /* display: none; */
}

.initial-textbox--header {
    color: #00D984;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.625rem;
    display: block;
    letter-spacing: .05em;
}

.initial-textbox--subheader {
    margin-top: 0;
    font-size: 1.625rem;
    display: block;
    font-weight: 300;
    color: #fff;
    letter-spacing: .05em;
}

.initial-textbox--play-btn {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    margin: 27px auto 10px auto;
    display: block;
    background-color: rgba(0,217,132, 1)
}

.initial-textbox--play-btn--text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: .05em;
    line-height: 1.25rem;
}



.play-btn-icon {
    color: #fff;
    font-size: 3rem;
    transform: translate(4px);
}

/* ** */

/* Stage Two Styling */
/* *NOTE: Add optional absolute positioning here */
.secondary-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    /*padding-bottom: 2.5rem; */
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* *NOTE: need to add lighter font weight capabilities here */
/* *NOTE: Need to modify margin values for the text here */
.secondary-textbox--text1 {
    font-size: 1.25rem;
    /*font-weight: 100;*/
    margin: 0 15px 1em;
}

.secondary-textbox--header {
    color: #00D984;
}

.secondary-textbox--text2 {
    margin: 0;
    margin-bottom: .1em;
    font-weight: 300;
    font-size: 1.3rem;
}

.secondary-textbox--container2 {
    width: 95%;
    margin: 0 auto;
}

h2.secondary-textbox--text2 {
	font-size: 38px;
    font-weight: bold;
    margin-top: 20px;
}

.secondary-textbox--button {
    background-color: #00D984;
    border: none;
    border-radius: 28px;
    width: 65%;
    height: auto;
    color: #fff;
    padding: .5em;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
}

.secondary-textbox--button:active {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .5);
    transform: translateY(5px);
}

.show-btn-icon {
    transform: translate(5px, 2px);
    font-size: 1.8rem;
}

/* ** */

/* Stage Three Styling */
.third-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 2.5rem;
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* ** */

/* Stage Four Styling */
.fourth-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 2.5rem;
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.selection-buttons {
    position: relative;
    border: none;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    margin: 0 1.1rem;
    font-size: 2.4em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
    -webkit-appearance: button;
    cursor: pointer;
    vertical-align: middle;
}

.selection-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%,-50%);
}

.selection-buttons:active {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .5);
    transform: translateY(5px);
}

.selection-button--white {
    background-color: #fff;
    color: red;
}

.selection-button--green {
    background-color: #00D984;
    color: #fff;
}

.selection-button--white>img {
    height: 50px;
    width: 50px;
}

.selection-button--green>img {
    height: 50px;
    width: 50px;

}

/* ** */

/* Fifth Textbox */
.fifth-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 2.5rem;
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* ** */

/* Sixth Textbox */
.sixth-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 6.5rem;
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

#age_p {
    width: 90%;
    margin: 15px auto 5px;
    position: relative;
    z-index: 100;
}
.email-container {
	width: 90%;
	margin: 0 auto;
}

.svg-carrot-d {
    width: 35px;
    height: 35px;
    background-color: #00D984;
    border-radius: 50%;
    padding: 0 2px;
    cursor: pointer;
    fill: #FFF;
    position: absolute;
    bottom: 5px;
    right: 0;
}

.icon-container {
    bottom: 15px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #00D984;
    border-radius: 16px;
}

.icon-container>i {
    color: #fff;
    font-size: 1.4rem;
    transform: translate(0, -2.5px);
}

select {
    background: url('') no-repeat top right transparent !important;
    border: none;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select option {
    color: black;
    font-weight: normal;
}


.sixth-textbox>p {
    font-size: .8rem;
    margin: 0;
    margin-top: .5em;
}

.age-icon {
    display: inline-block;
}

/* ** */

/* Seventh Textbox */
.seventh-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 2.5rem;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.email_p {
    position: relative;
    display: flex;
    justify-content: center;
}

.email_b {
    display: none;
}

.svg-send {
    width: 40px;
    height: 40px;
    background-color: #00D984;
    border-radius: 50%;
    padding: .5em;
    /* position: absolute;
    top: -5px;
    right: 130px;
    z-index: 100;  */
    cursor: pointer;
    fill: #FFF;
}

select,
input {
    border: 0;
    border-bottom: 1px solid #00D984;
    outline: 0;
    font-size: 1.375rem;
    border-radius: 0;
    -webkit-appearance: none;
    color: #fff;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5px;
    width: 98%;
    max-width: 400px;
    background: transparent;
	font-weight: 600;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
    text-align: left;
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    text-align: left;
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
    text-align: left;
    opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    text-align: left;
    opacity: 1;
}

input#e,
.err,
.error {
    border-bottom: 1px solid #f00 !important;
}

.icon-container2 {
    position: absolute;
    left: 250px;
    bottom: 15px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #00D984;
    border-radius: 16px;
    transform: translate(75%, -350%);
}

.icon-container2>i {
    color: #fff;
    font-size: 1.4rem;
    transform: translate(2px, 1px);
}

.agree {
    font-size: .6rem;
    opacity: .5;
    width: 95%;
    margin: 0 auto;
    text-align: justify;
}

.disclosure>a {
    color: #fff;
}

.dot {
    height: 1.1rem;
    width: 1.1rem;
    background-color: #e2e2e2;
    border-radius: 50%;
    display: inline-block;
    margin: 1em .75em;
}

.dot__inactive {
    opacity: 1;
}

.dot__selected {
    background-color: #00D984;
    transition: background-color .2s;
}

/* Eighth Textbox */
.eighth-textbox {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 4rem;
    display: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* ninth Textbox */
.ninth-textbox {
    color: #fff;
    width: 100%;
    height: 60vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
}

.ninth-btn {
    background-color: #00D984;
    border: .5 solid #00D984;
    border-radius: 28px;
    width: 70%;
    height: auto;
    color: #fff;
    padding: .5em;
    font-size: 1.4rem;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
}

.ninth-btn-icon {
    transform: translate(15%, 18%);
    font-size: 1.8rem;
}

.ninth-btn--link {
    text-decoration: none;
    color: #fff;
}

.ninth-top {
    padding-top: 10vh;
    display: none;
}

.ninth-top-icon {
    font-size: 6rem;
    color: #fff;
}

.ninth-top-text {
    font-size: 1.25rem;
    /*font-weight: 100;*/
    color: #fff;
    padding: 0 20px;
}

/* Media Queries */
@media (max-width: 375px) {
    .secondary-textbox--button {
        font-size: 1.2rem;
        padding-bottom: .75em;
    }

    .ninth-btn {
        font-size: 1.2rem;
        padding-bottom: .75em;
    }

    .ninth-btn {
        width: 90%;
    }
}

@media (min-width: 475px) and (max-width: 700px) {
    .secondary-textbox--button {
        width: 40%;
        font-size: 1.2rem;
    }
}


@media(min-width: 701px) {
    .secondary-textbox--button {
        width: 40%;
    }

    .ninth-btn {
        width: 50%;
    }
}

@media (max-width: 700px) {
    .r2 > form > .btn {
        width: 70%;
        font-size: 1rem;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .r2 > form > .btn {
        width: 90%;
		margin-bottom: 20px;
    }
}

@media (max-width: 700px) {
    .ninth-bottom {
        padding-bottom: 1em;
    }
}

@media (max-width: 375px) {
    .progress-container {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 700px) {
    .progress-container {
        top: 20px;
        right: 20px;
    }
}

@media(max-width: 1024px) {}

/* R2 Styling */
.r2 {
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    display: none;
}

.r2-header {
    font-size: 1.4rem;
    display: block;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 auto 30px;
    padding-top: 20px;
}

b,
.addr > span {
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
    font-weight: bold;
	display: block
}

.r2-footer-container {
    position: relative;
    margin-top: 3vh;
    height: 50vh;
}

.r2-footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    font-size: .8rem;
}

.p_mobile small a,
.p_mobile small a:hover {
    color: inherit;
}

.r2-header--subtext {
    display: inline;
    margin-left: 10px;
    opacity: .5;
    color: #fff;
    font-size: 12px;
}

.p_mobile>small {
    display: block;
    color: #fff;
    text-align: justify;
    margin-top: 5px;
    opacity: .5;
    font-size: 10px;
}

.p_country {
    color: #fff;
}

.address_b {
    display: none;
}

.addr {
    display: block;
    margin-bottom: 15px;
}

.addr > span {
    display: block;
    width: 100%;
}

.mobile::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, .3);
}

.mobile::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255, 255, 255, .3);
}

.mobile:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, .3);
}

.mobile:-moz-placeholder { /* Firefox 18- */
    color: rgba(255, 255, 255, .3);
}

.btn {
    display: block;
    margin: 30px auto 0;
    background-color: #00D984;
    border: none;
    border-radius: 28px;
    width: 100%;
    max-width: 315px;
    height: auto;
    color: #fff;
    padding: .5em;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
}

.btn-submit-r2 {
	margin-top: 20px !important;
	min-height: 45px;
}

.fa-caret-down {
    width:40px;
    height: 35px;
    background-color: #00D984;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 5px;
    cursor: pointer;
    z-index: 50;
    padding: 0 2px;
    box-sizing: content-box;
}

@media (min-width: 650px) {
    .fa-caret-down {
        right: 30px;
    }
}

@media (max-width: 625px) {
    .svg-send {
        right: 115px;
    }
}

@media (max-width: 550px) {
    .svg-send {
        right: 90px;
    }
}

@media (max-width: 500px) {
    .fa-caret-down {
        width: 25px;
        height: 25px;
        right: 25px;
        top: -3px;
    }
}

@media (max-width: 490px) {
    .svg-send {
        right: 50px;
    }
}

@media (max-width: 420px) {
    select, input {
        font-size: 1.25rem;
    }
    .svg-send {
        right: 15px;
    }

    .fa-caret-down {
        right: 10px;
    }
	.sub-header1{
		top: 10px;
	}

}

@media (max-width: 320px) {
    select, input {
        font-size: 1rem;
		min-height: 34px;
    }

    #svgSend,
    .svg-carrot-d {
        height: 30px;
        width: 30px;
        /*right: 20px;*/
    }

    .r2-header {
        font-size: 1.2rem;
    }

    #ninthTextbox {
	    justify-content: flex-start;
    }

    .agree,
    .p_mobile > small {
    	font-size: 9px;
    }
	.initial-textbox--subheader {
		font-size: 1rem;
		line-height: 1rem;
	}
	.initial-textbox--play-btn--text {
		font-size: 1rem;
		line-height: 1rem;
	}
}

@media (max-height: 620px) {
    .r2-footer-container {
        margin-top: 1rem;
        height: 15vh;
    }
}

@media (max-height: 400px) and (orientation: landscape) {
    [class*="textbox--button"] {
    	width: 80%;
    }
    select,
	input {
    	font-size: 1rem;
    }
}

@media (max-height: 720px) {
	#main {
		margin-bottom: 50px;
	}
}
